Skip to main content

round

Type

function

Summary

Rounds off a number to the nearest integer.

Syntax

the round of <number>
round(<number>, <precision>)

Description

Use the round function to round off numbers and eliminate insignificant digits for financial applications.

The round function performs financial-style rounding. If the number is exactly halfway between two numbers, round always rounds the number up if positive, down if negative. (To round off numbers without introducing any statistical upward bias, use the statRound function instead.)

A positive precision indicates a place to the right of the decimal point, and a negative precision indicates a place to the left. For example, 1 rounds off to the nearest tenth, 2 rounds off to the nearest hundredth, -1 rounds off by ten, and so on. If you don't specify a precision, zero is used, meaning that the number is rounded off to a whole number.

note

The statRound function is equivalent to HyperTalk's "round" function.

Parameters

NameTypeDescription

number

Any number or expression that evaluates to a number.

precision

integer

An integer giving the decimal place to round off to.

Examples

the round of 26.2 -- yields 26
the round of 2.5 -- yields 3 (rounds up)
round(845.6604,2) -- yields 845.66
round(9734.22,-3) -- yields 10000

control structure: function

function: compound, statRound, random, abs, extents, average

glossary: negative, HyperCard, return, decimal point

keyword: integer

Compatibility and Support

Introduced

LiveCode 1.0

OS

mac

windows

linux

ios

android

Platforms

desktop

server

mobile

Thank you for your feedback!

Was this page helpful?